home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / eulisp / mpfeel.lha / MPFeel / Plurals / Random / Makefile < prev    next >
Encoding:
Makefile  |  1992-04-27  |  203 b   |  16 lines

  1. MPL = mpl
  2. MPLFLAGS = -Zq -f -c -I.
  3.  
  4. LIB = librand.a
  5.  
  6. OBJS = p_random.o p_random_init.o fp_random.o
  7.  
  8. .SUFFIXES: .o .m
  9.  
  10. .m.o:
  11.     $(MPL) $(MPLFLAGS) $<
  12.  
  13. $(LIB): $(OBJS)
  14.     ar rv $(LIB) $(OBJS)
  15.     mpranlib $(LIB)
  16.